/* === RESET (unique class) === */
.asmembershipModaltalent {
  .reset-talent *,
  .reset-talent *::before,
  .reset-talent *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* === ROOT VARIABLES === */
  :root {
    --orange: #ff4e00;
    --blue: #00a0b9;
    --dark: #0d2b35;
    --grey: #555;
    --border: #e0e0e0;
  }

  /* === TYPOGRAPHY (unique classes) === */
  .ff-fjalla {
    font-family: "Fjalla One", Arial, sans-serif;
    font-weight: 400;
  }
  .ff-poppins {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  }

  /* === MODAL SHELL (unique class) === */
  .modal-shell-talent {
    background: #f0f0f0;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  }

  /* === CLOSE BUTTON (unique class) === */
  .btn-close-modal-talent {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
  }
  .btn-close-modal-talent:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
  }
  .btn-close-modal-talent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  }

  /* === HEADER (unique class) === */
  .modal-header-talent {
    background: #0d2b35;
    padding: 28px 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .modal-header-talent .bubble-abs {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .eyebrow-talent {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  .header-title-talent {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
  }
  .header-sub-talent {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
  }

  /* Inline colored spans (unique) */
  .bg-orange-inline {
    background: #ff4e00;
    color: #fff;
    border-radius: 50%;
    padding: 2px 14px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
  }
  .bg-blue-inline {
    background: #00a0b9;
    color: #fff;
    border-radius: 50%;
    padding: 2px 14px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
  }

  /* === FEATURES STRIP (unique class) === */
  .features-strip-talent {
    background: linear-gradient(135deg, #ff6520 0%, #d63c00 100%);
    padding: 22px 28px 24px;
    position: relative;
    overflow: hidden;
  }
  .features-strip-talent .bubble-abs {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .features-strip-talent > *:not(.bubble-abs) {
    position: relative;
    z-index: 1;
  }
  .strip-heading-talent {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 3px;
    letter-spacing: 0.01em;
  }
  .strip-sub-talent {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
  }
  .features-cols-talent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }
  .feature-list-talent {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .feature-list-talent li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.4;
  }
  .feature-list-talent li:last-child {
    border-bottom: none;
  }
  .icon-svg-talent {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* === PASS SECTION (unique class) === */
  .pass-section-talent {
    padding: 14px;
  }

  /* === PASS LABEL BAND (unique class) === */
  .pass-label-band-talent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }
  .pass-label-talent {
    background: #ff4e00;
    border-radius: 10px 10px 0 0;
    padding: 9px 12px;
    text-align: center;
    color: #fff;
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* === PASS GRID (unique class) === */
  .pass-grid-talent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

  /* === PASS CARD (unique class) === */
  .pass-card-talent {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .pass-card-title-talent {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 1.2rem;
    color: #0d2b35;
    margin-bottom: 10px;
    text-align: center;
  }
  .pass-price-talent {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 2rem;
    color: #0d2b35;
    line-height: 1;
    text-align: center;
    display: block;
    margin-bottom: 4px;
  }
  .pass-note-talent {
    font-size: 0.72rem;
    color: #555;
    text-align: center;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
  }
  .pass-features-talent {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex: 1;
  }
  .pass-features-talent li {
    font-size: 0.76rem;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
  }
  .pass-features-talent li:last-child {
    border-bottom: none;
  }
  .pass-features-talent a {
    color: #222;
    font-weight: 700;
    text-decoration: underline;
  }

  /* === PASS CTA (unique class) === */
  .btn-pass-talent {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background: #ff4e00;
    color: #fff;
    margin-top: auto;
  }
  .btn-pass-talent:hover {
    background: #e64400;
  }
  .btn-pass-featured-talent {
    background: #ff4e00;
    box-shadow: 0 4px 14px rgba(255, 78, 0, 0.3);
  }

  /* === BEST BADGE (unique class) === */
  .best-badge-talent {
    display: inline-block;
    background: #ff4e00;
    color: #fff;
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
  }

  /* === FOOTER (unique class) === */
  .modal-footer-talent {
    background: #0d2b35;
    padding: 12px 20px;
    text-align: center;
  }
  .footer-login-talent {
    font-size: 0.82rem;
    color: #fff;
    margin: 0 0 9px;
  }
  .footer-login-talent a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
  }
  .footer-secure-talent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-secure-text-talent {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.75);
  }
  .footer-secure-text-talent strong {
    color: #fff;
  }
  .footer-badge-stripe-talent {
    background: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.68rem;
    color: #222;
    white-space: nowrap;
  }
  .footer-links-talent {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 6px;
  }
  .footer-links-talent a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
  }

  /* === RESPONSIVE (unique) === */
  @media (max-width: 620px) {
    .features-cols-talent {
      grid-template-columns: 1fr;
    }
    .pass-label-band-talent,
    .pass-grid-talent {
      grid-template-columns: 1fr;
    }
    .pass-label-talent {
      border-radius: 10px 10px 0 0;
    }
    .pass-card-talent {
      border-radius: 0 0 12px 12px;
    }
    .modal-header-talent {
      padding: 22px 20px 18px;
    }
    .header-title-talent {
      font-size: 1.2rem;
    }
  }
}

.asmembershipModal {
  .reset *,
  .reset *::before,
  .reset *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --orange: #ff4e00;
    --blue: #00a0b9;
    --dark: #0d2b35;
    --dark2: #1a4050;
    --grey: #555;
    --border: #e0e0e0;
  }

  .ff-fjalla {
    font-family: "Fjalla One", Arial, sans-serif;
    font-weight: 400;
  }

  .ff-poppins {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  }

  .modal-shell {
    background: #f0f0f0;
    border-radius: 20px;
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    /* max-height: 95vh; */
    overflow-y: auto;
  }

  /* Close button styles */
  .btn-close-modal {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    padding: 0;
  }

  .btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
  }

  .btn-close-modal:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  }

  .modal-header-section {
    background: var(--dark);
    padding: 28px 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .modal-header-section .bubble-abs {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .eyebrow-text {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }

  .header-title {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
    margin-top: 10px;
  }

  .header-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
  }

  .header-badge {
    display: inline-block;
    background: rgba(0, 160, 185, 0.18);
    border: 1px solid rgba(0, 160, 185, 0.35);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 0.82rem;
    color: #fff;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
  }

  .text-blue {
    color: var(--blue);
  }

  .bg-blue-inline {
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    padding: 2px 14px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
  }

  .card-wrapper {
    padding: 14px;
  }

  .card-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
      0 8px 32px rgba(0, 160, 185, 0.2),
      0 0 0 2px rgba(0, 160, 185, 0.15);
    display: flex;
    flex-direction: column;
  }

  .card-banner-top {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 16px;
    text-align: center;
    background: var(--blue);
    color: #fff;
  }

  .card-white-top {
    background: #fff;
    padding: 22px 28px 18px;
    display: flex;
    flex-direction: column;
  }

  .card-label {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
  }

  .card-title-main {
    font-size: 1.65rem;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .card-price {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 2.3rem;
    color: var(--dark);
    line-height: 1;
    display: block;
    margin: 8px 0 4px;
  }

  .card-price-note {
    font-size: 0.74rem;
    color: var(--grey);
    display: block;
    margin-bottom: 2px;
  }

  .info-box {
    background: #f0f8fb;
    border: 1px solid rgba(0, 160, 185, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: auto;
  }

  .info-box .info-title {
    font-size: 0.76rem;
    color: var(--blue);
    font-weight: 700;
    display: block;
  }

  .info-box .info-sub {
    font-size: 0.73rem;
    color: var(--dark);
    display: block;
    margin-top: 2px;
  }

  .card-blue-bottom {
    background: linear-gradient(135deg, #007d90 0%, var(--blue) 100%);
    padding: 20px 28px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .card-blue-bottom .bubble-abs {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .card-blue-bottom > *:not(.bubble-abs) {
    position: relative;
    z-index: 1;
  }

  .bottom-heading {
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
  }

  .bottom-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
  }

  .feature-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 18px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.4;
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .icon-svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .btn-cta-primary {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 8px;
    border: none;
    font-family: "Fjalla One", Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background: #fff;
    color: var(--blue);
    margin-top: auto;
  }

  .btn-cta-primary:hover {
    background: #e0f5f9;
  }

  .modal-footer-section {
    background: var(--dark);
    padding: 12px 20px;
    text-align: center;
  }

  .footer-login {
    font-size: 0.82rem;
    color: #fff;
    margin: 0 0 9px;
  }

  .footer-login a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
  }

  .footer-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-secure-text {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .footer-secure-text strong {
    color: #fff;
  }

  .footer-badge-stripe {
    background: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.68rem;
    color: #222;
    white-space: nowrap;
  }

  .footer-links {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 6px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
  }

  @media (max-width: 520px) {
    .feature-grid-2col {
      grid-template-columns: 1fr;
    }

    .modal-header-section {
      padding: 22px 20px 18px;
    }

    .header-title {
      font-size: 1.2rem;
    }
  }
}
